home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / internet / other / news / snz128s.tos / SRC / SCREEN.H < prev    next >
Encoding:
C/C++ Source or Header  |  1994-07-28  |  697 b   |  22 lines

  1. /*
  2.  * $Id: SCREEN.H,v 1.2 1994/02/05 18:45:50 gbj Exp user $
  3.  */
  4.  
  5. /**************************************************************************
  6. *   01 Jun 93   1.1    MSM  Header added                                  *
  7. *                           Snews 2.0                                     *
  8. ***************************************************************************/
  9.  
  10. void v_init(int);               /* initialise Bios video package */
  11.  
  12. extern unsigned char scr_rows;
  13. extern unsigned char scr_cols;
  14.  
  15. void textbackground(int newcolour);
  16. void textcolor(int newcolour);
  17. void clreol(void);
  18. void clrscr(void);
  19. void gotoxy(int x, int y);
  20. void delline(void);
  21. void insline(void);
  22.